home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
lib
/
mntlib44.zoo
/
mntlib
/
rewind.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-01
|
238b
|
17 lines
/* something like the origonal
* from Dale Schumacher's dLibs
*/
#include <stdio.h>
#include <unistd.h>
void
rewind(fp)
register FILE *fp;
{
fflush(fp);
(void) lseek(fp->_file, 0L, SEEK_SET);
fp->_flag &= ~(_IOEOF|_IOERR);
}